home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / util / cdity / ModeProSrc.lha / Daemon / Backfill.h < prev    next >
C/C++ Source or Header  |  1998-08-02  |  565b  |  27 lines

  1. #ifndef EXEC_TYPES_H
  2. #include <exec/types.h>
  3. #endif
  4.  
  5. #ifndef GRAPHICS_GFX_H
  6. #include <graphics/gfx.H>
  7. #endif
  8.  
  9. #ifndef GRAPHICS_CLIP_H
  10. #include <graphics/clip.h>
  11. #endif
  12.  
  13. struct BackFillMsg
  14. {
  15.     struct Layer    *Layer;
  16.     struct Rectangle Bounds;
  17.     LONG             OffsetX;
  18.     LONG             OffsetY;
  19. };
  20.  
  21. // 1
  22. struct Hook *Image_AllocBackfillHook(struct Screen *Scr, struct DefaultNode *DN);
  23. void Image_FreeBackfillHook(struct Hook *Hook);
  24. // 2
  25. struct Hook *RGB_AllocBackfillHook(struct Screen *Scr, struct DefaultNode *DN);
  26. void RGB_FreeBackfillHook(struct Hook *Hook);
  27.